home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / FileStatistics.cp < prev    next >
Text File  |  1997-06-28  |  310b  |  21 lines

  1. // FileStatistics.cp
  2.  
  3. #ifndef FileStatistics_h
  4. #include "FileStatistics.h"
  5. #endif
  6.  
  7. FileStatistics::FileStatistics( ConstPString theName,
  8.                                           uint32 theLines )
  9.   : name( theName ),
  10.      lines( theLines ),
  11.      link( name, this )
  12.   {
  13.   }
  14.  
  15. FileStatistics::~FileStatistics()
  16.   {
  17.   }
  18.  
  19. #include "RedBlackLink.cp"
  20.  
  21.